home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Tool Chest / Development Tools & Languages / Dylan Related / Dylan alpha demos / Online Insultant Pro src ƒ / Setup.dylan < prev    next >
Encoding:
Text File  |  1994-12-13  |  491 b   |  23 lines  |  [TEXT/ttxt]

  1. language: infix-dylan
  2. module: Dylan-user
  3.  
  4. /* Copyright (C) 1994, Apple Computer, Inc. All rights reserved. */
  5.  
  6. define library Online-Insultant
  7.   use Dylan;
  8.   use Dylan-Framework;
  9.   
  10.   export Online-Insultant;
  11. end library;
  12.  
  13. define module Online-Insultant
  14.   use Apple-Dylan;
  15.   use dylan-framework,
  16.      // We have our own definition of random-integer
  17.      // for example purposes
  18.      exclude: { random-integer };
  19.   
  20.   export 
  21.      init-Online-Insultant,
  22.      run-Online-Insultant;
  23. end module;